You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This pull request adds a GitHub Actions workflow to automatically lint Python code on every push and pull request using ruff.
The workflow checks all Python files in the backend/ folder as well as main.py and run.py at the root.
This improves code quality and style consistency across all contributors.
Hi @vannu07,
This PR adds a new Python lint workflow using ruff. The workflow is awaiting approval to run. could you please review and approve the workflow? Thank you!
Thanks for setting up the ruff linting workflow. That's a great addition.
I'm seeing a display issue where the .github/workflows/python-lint.yml file seems to be showing as "Empty file." in the commit view. Since the checks passed, I know it has content, but could you confirm the file contents look correct?
Thanks again for adding the Ruff lint workflow — great initiative to improve our code quality!
I noticed the “Python Lint / lint (pull_request)” check is currently failing after about 8 seconds. That usually indicates Ruff detected some linting or formatting issues in the codebase.
Could you please run the following command locally to identify and fix the issues?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 Description
This pull request adds a GitHub Actions workflow to automatically lint Python code on every push and pull request using ruff.
The workflow checks all Python files in the backend/ folder as well as main.py and run.py at the root.
This improves code quality and style consistency across all contributors.
Fixes #12
✅ Type of Change
🔍 Checklist
💬 Additional Context
Adds .github/workflows/python-lint.yml and prepares the project for lint status badge in README after first workflow run.